a71fc83df203484b98b33949bea3af69d73879c7,platform/platform-impl/src/com/intellij/openapi/project/FileContentQueue.java,FileContentQueue,doLoadContent,#FileContent#,103

Before Change


    try {
      synchronized (this) {
        while (myTotalSize > SIZE_THRESHOLD) {
          if (indicator != null) {
            indicator.checkCanceled();
          }
          wait(300L);
        }

After Change


    try {
      synchronized (this) {
        while (myTotalSize > SIZE_THRESHOLD) {
          indicator.checkCanceled();
          wait(300L);
        }
        myTotalSize += contentLength;